mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
27 lines
656 B
JSON
27 lines
656 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
// "module": "ES2015",
|
|
// "moduleResolution": "node",
|
|
// "rootDir": "./",
|
|
"strict": true,
|
|
"outDir": "./target",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration": true,
|
|
"lib": [ "es2019" ],
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"incremental": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"src/*.ts",
|
|
"src/**/*.ts"
|
|
]
|
|
}
|