2016-04-17 00:32:47 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2017-09-25 07:03:32 +03:00
|
|
|
"target": "es2017",
|
2016-04-17 00:32:47 +03:00
|
|
|
"outDir": "out",
|
2018-03-26 01:44:50 +03:00
|
|
|
"baseUrl": "./",
|
2016-10-16 22:56:00 +03:00
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
2018-03-26 01:44:50 +03:00
|
|
|
"paths": {
|
|
|
|
"@cmt/*": ["src/*"],
|
|
|
|
"@test/*": ["test/*"]
|
|
|
|
},
|
2016-04-17 00:32:47 +03:00
|
|
|
"sourceMap": true,
|
2016-09-25 01:29:20 +03:00
|
|
|
"rootDir": ".",
|
2018-05-11 08:15:16 +03:00
|
|
|
"strict": true,
|
2017-09-23 23:20:56 +03:00
|
|
|
"experimentalDecorators": true,
|
2017-09-25 07:03:32 +03:00
|
|
|
"noUnusedParameters": true,
|
2017-11-17 04:58:59 +03:00
|
|
|
"noImplicitThis": true,
|
2024-04-17 15:59:17 +03:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
2016-04-17 00:32:47 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
2016-10-16 22:56:00 +03:00
|
|
|
"node_modules",
|
2024-04-18 22:57:11 +03:00
|
|
|
"tools",
|
2023-04-14 01:43:53 +03:00
|
|
|
".vscode-test",
|
2016-04-17 00:32:47 +03:00
|
|
|
]
|
|
|
|
}
|