mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
26 lines
526 B
JSON
26 lines
526 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": false,
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|