dolphins7.skeleton/client/tsconfig.json

20 lines
395 B
JSON
Raw Permalink Normal View History

2023-12-10 19:59:36 +01:00
{
"compilerOptions": {
"strict": true,
"strictNullChecks": false,
2024-02-10 01:44:36 +01:00
"module": "ES6",
2024-04-25 18:49:49 +02:00
"target": "ES5",
2023-12-10 19:59:36 +01:00
"jsx": "react",
2024-02-10 01:44:36 +01:00
"lib": ["DOM"],
2024-02-08 21:58:55 +01:00
"baseUrl": "./src",
2024-02-10 01:44:36 +01:00
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": true,
"moduleResolution": "node",
"removeComments": true,
"incremental": true,
"paths": {
"~/*": ["./js/*"]
},
2023-12-10 19:59:36 +01:00
}
}