theia/tsconfig.json

42 lines
778 B
JSON
Raw Permalink Normal View History

2024-03-24 05:22:33 +01:00
{
"compilerOptions": {
2024-03-24 06:17:11 +01:00
"baseUrl": ".",
"paths": {
"src/*": [
"./src/*"
]
2024-03-24 06:17:11 +01:00
},
2024-03-24 05:22:33 +01:00
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
2024-03-24 05:22:33 +01:00
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": [
"vitest/globals"
],
"plugins": [
{
"transform": "typia/lib/transform"
}
],
"strictNullChecks": true
2024-03-24 05:22:33 +01:00
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}