Files
kill-life-studio/tsconfig.json
T
2026-03-21 09:07:11 +01:00

25 lines
423 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"lib": [
"ES2022"
],
"outDir": "out",
"rootDir": "src",
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"types": [
"node",
"vscode"
]
},
"include": [
"src/**/*.ts"
]
}