mirror of
https://github.com/AnandChowdhary/package-version-action.git
synced 2025-12-06 07:48:12 +08:00
21 lines
524 B
JSON
21 lines
524 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "esnext"],
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declarationDir": "./dist",
|
|
"outDir": "./dist",
|
|
"typeRoots": ["node_modules/@types", "@types"]
|
|
},
|
|
"include": ["src", "tooling"],
|
|
"exclude": ["node_modules"]
|
|
}
|