dolphins7.skeleton/twenty-frontend/tsconfig.json

20 lines
395 B
JSON
Raw 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",
"target": "ES6",
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
}
}