mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-02 08:05:58 +09:00
40 lines
745 B
JSON
40 lines
745 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"noEmitOnError": false,
|
||
|
"noImplicitAny": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"noUnusedParameters": false,
|
||
|
"noUnusedLocals": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"declaration": false,
|
||
|
"sourceMap": false,
|
||
|
"target": "es2017",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"removeComments": false,
|
||
|
"noLib": false,
|
||
|
"strict": true,
|
||
|
"strictNullChecks": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"],
|
||
|
},
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types",
|
||
|
"@types",
|
||
|
],
|
||
|
"lib": [
|
||
|
"esnext",
|
||
|
"webworker"
|
||
|
]
|
||
|
},
|
||
|
"compileOnSave": false,
|
||
|
"include": [
|
||
|
"./**/*.ts"
|
||
|
]
|
||
|
}
|