-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathtsconfig.types.json
More file actions
25 lines (25 loc) · 721 Bytes
/
Copy pathtsconfig.types.json
File metadata and controls
25 lines (25 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"compilerOptions": {
"declaration": true,
"emitDeclarationOnly": true,
"noCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"moduleResolution": "node",
"module": "CommonJS",
"target": "es2023",
"strict": false,
"noImplicitAny": false,
"experimentalDecorators": true,
"downlevelIteration": true,
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
},
"outDir": "dist/types",
"rootDir": "./src"
},
"include": ["src/types/**/*.ts", "src/backend/**/*.ts"],
"exclude": ["src/**/*.d.ts", "src/main.ts"]
}