mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
20 lines
418 B
JSON
20 lines
418 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": false,
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|