19 lines
438 B
JSON
19 lines
438 B
JSON
|
{
|
||
|
"extends": ["../tsconfig.json"],
|
||
|
"compilerOptions": {
|
||
|
"removeComments": false,
|
||
|
"preserveConstEnums": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"noImplicitAny": false,
|
||
|
"outDir": "lib",
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"strictNullChecks": true,
|
||
|
"sourceMap": true,
|
||
|
"jsx": "preserve",
|
||
|
"allowJs": true,
|
||
|
"resolveJsonModule": true
|
||
|
},
|
||
|
"include": ["./src", "global.d.ts"]
|
||
|
}
|