Files
ds-pages/tsconfig.json
2024-06-25 10:40:53 +08:00

36 lines
696 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@test-utils": [
"./test-utils"
],
"@/*": [
"./src/*"
]
}
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}