-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 620 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"allowJs": false,
"module": "CommonJS",
"target": "ES2022",
"moduleResolution": "Node10",
"allowSyntheticDefaultImports": true,
"declaration": true,
"noUncheckedIndexedAccess": true,
"moduleDetection": "force",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@spt/*": ["./types/*"]
}
},
"include": ["src/*", "src/**/*"]
}