prasi-bun/app/srv/ws/sync/code/templates/tsconfig_json

39 lines
721 B
Plaintext

{
"compilerOptions": {
"paths": {
"lib/*": [
"./lib/*"
],
"app/*": [
"./app/*"
],
"server/*": [
"./server/*"
],
"@/*": [
"./lib/*"
]
},
"lib": [
"ESNext",
"DOM"
],
"module": "esnext",
"target": "esnext",
"moduleDetection": "force",
"moduleResolution": "Node",
"noEmit": true,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"typeRoots": [
"./node_modules/@types",
"./lib/types"
]
}
}