22 lines
530 B
JSON
22 lines
530 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"declaration": false,
|
||
|
|
"removeComments": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"target": "ES2022",
|
||
|
|
"sourceMap": true,
|
||
|
|
"rootDir": "./src",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"incremental": false,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": false,
|
||
|
|
"strictPropertyInitialization": false
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|