keywind/tsconfig.json

22 lines
576 B
JSON
Raw Normal View History

2022-09-03 08:00:00 +00:00
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
2023-09-23 20:00:00 +00:00
"allowImportingTsExtensions": true,
2022-09-03 08:00:00 +00:00
"isolatedModules": true,
"lib": ["ESNext", "DOM"],
"module": "ESNext",
2023-09-23 20:00:00 +00:00
"moduleResolution": "bundler",
2022-09-03 08:00:00 +00:00
"noEmit": true,
2023-09-23 20:00:00 +00:00
"noFallthroughCasesInSwitch": true,
2022-09-03 08:00:00 +00:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"useDefineForClassFields": true
},
2023-09-23 20:00:00 +00:00
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2022-09-03 08:00:00 +00:00
}