31 lines
716 B
JSON
31 lines
716 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2020"],
|
|
"declaration": true,
|
|
"declarationDir": "./dist_ts",
|
|
"outDir": "./dist_ts",
|
|
"rootDir": "./ts",
|
|
"strict": true,
|
|
"verbatimModuleSyntax": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"./ts/**/*"
|
|
],
|
|
"exclude": [
|
|
"./node_modules",
|
|
"./dist",
|
|
"./dist_ts"
|
|
]
|
|
} |