dolphins7.skeleton/twenty-frontend/tsconfig.json

18 lines
349 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" ],
2023-12-10 19:59:36 +01:00
"baseUrl": "src/",
"paths": { "*": ["js/*"] },
}
}