40 lines
799 B
JSON
40 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"outDir": "../",
|
|
"declaration": false,
|
|
"rootDir": "../",
|
|
"rootDirs": [
|
|
"../src",
|
|
"../types"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"mocha"
|
|
],
|
|
"allowJs": false,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"../src/*": ["../ts_src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"../ts_src/**/*.ts"
|
|
]
|
|
}
|