28 строки
636 B
JSON
28 строки
636 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2018",
|
|
"outDir": "out",
|
|
"baseUrl": "./",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"paths": {
|
|
"@cmt/*": ["src/*"],
|
|
"@test/*": ["test/*"]
|
|
},
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitThis": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"tools",
|
|
".vscode-test",
|
|
]
|
|
} |