dolphins7.skeleton/twenty-frontend/tsconfig.json

18 lines
387 B
JSON
Raw Normal View History

2023-12-10 19:59:36 +01:00
{
"compilerOptions": {
"strict": true,
"strictNullChecks": false,
"module": "commonjs",
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react",
"allowJs": true,
2023-12-25 06:37:18 +01:00
"lib": [ "ES2022", "DOM" ],
"allowUmdGlobalAccess": true,
2024-02-08 21:58:55 +01:00
"baseUrl": "./src",
"paths": { "~/*": ["./js/*"] },
2023-12-10 19:59:36 +01:00
}
}