mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
23 lines
490 B
JSON
23 lines
490 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"baseUrl": "./",
|
|
"module": "commonjs",
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"isolatedModules": false,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"typeRoots" : [
|
|
"../typings",
|
|
"../node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"../node_modules"
|
|
],
|
|
"include": [
|
|
"./**/*.ts"
|
|
]
|
|
} |