forked from LeenkxTeam/Kmake
25 lines
437 B
JSON
25 lines
437 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2017",
|
||
|
|
"module": "commonjs",
|
||
|
|
"sourceMap": true,
|
||
|
|
"outDir": "../lib/kmake",
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"newLine": "LF",
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"baseUrl": "src",
|
||
|
|
"paths": {
|
||
|
|
"kmake/*": ["./*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"src/@types/**/*.ts"
|
||
|
|
],
|
||
|
|
"compileOnSave": true
|
||
|
|
}
|