1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 07:35:57 +09:00
cherrypick/test/tsconfig.json

42 lines
853 B
JSON
Raw Normal View History

2016-12-29 07:49:51 +09:00
{
2019-11-24 17:09:32 +09:00
"compilerOptions": {
"allowJs": true,
"noEmitOnError": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"declaration": false,
"sourceMap": true,
"target": "es2017",
"module": "commonjs",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
2019-11-24 17:09:32 +09:00
"removeComments": false,
"noLib": false,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"isolatedModules": true,
2021-03-23 17:54:43 +09:00
"baseUrl": "./",
"paths": {
"@/*": ["../src/*"]
},
2019-11-24 17:09:32 +09:00
"typeRoots": [
2021-03-13 00:18:41 +09:00
"../node_modules/@types",
"../src/@types"
],
"lib": [
"esnext"
2019-11-24 17:09:32 +09:00
]
},
"compileOnSave": false,
"include": [
2021-03-13 00:18:41 +09:00
"./**/*.ts"
2019-11-24 17:09:32 +09:00
]
2016-12-29 07:49:51 +09:00
}