29 строки
637 B
JSON
29 строки
637 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"outDir": "out",
|
|
"baseUrl": "./",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"paths": {
|
|
"@cmt/*": ["src/*"],
|
|
"@test/*": ["test/*"]
|
|
},
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitThis": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"test/**/CMakeFiles/**/*.ts"
|
|
]
|
|
} |