mirror of
https://github.com/Terncode/pixel.horse.git
synced 2026-09-24 13:55:04 +02:00
34 lines
642 B
JSON
Executable File
34 lines
642 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": [
|
|
"dom",
|
|
"ES2022"
|
|
],
|
|
"rootDir": "src/ts",
|
|
"outDir": "dist/node",
|
|
"pretty": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"declaration": false,
|
|
"noEmitOnError": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"sourceMap": true,
|
|
"preserveConstEnums": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"build",
|
|
"tools",
|
|
"src/scripts",
|
|
"node_modules"
|
|
]
|
|
}
|