treterter commited on
Commit
24a364e
1 Parent(s): a99e2ed

Create tsconfig.json

Browse files
Files changed (1) hide show
  1. tsconfig.json +28 -0
tsconfig.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2022",
4
+ "module": "ESNext",
5
+ "strict": true,
6
+ "declaration": true,
7
+ "removeComments": true,
8
+ "emitDecoratorMetadata": true,
9
+ "experimentalDecorators": true,
10
+ "allowSyntheticDefaultImports": true,
11
+ "sourceMap": true,
12
+ "outDir": "./dist",
13
+ "baseUrl": "./",
14
+ "paths": {
15
+ "@/*": ["src/*"]
16
+ },
17
+ "incremental": true,
18
+ "moduleResolution": "node",
19
+ "skipLibCheck": true,
20
+ "strictNullChecks": false,
21
+ "noImplicitAny": false,
22
+ "strictBindCallApply": false,
23
+ "forceConsistentCasingInFileNames": false,
24
+ "noFallthroughCasesInSwitch": false
25
+ },
26
+ "include": ["src"],
27
+ "exclude": ["node_modules", "dist"]
28
+ }