-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
31 lines (31 loc) · 865 Bytes
/
tsconfig.json
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
26
27
28
29
30
31
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"lib": ["ES2018", "ES2015", "dom", "dom.iterable", "ESNext"],
"declaration": true,
"declarationDir": "./lib",
"rootDir": "./src",
"outDir": "./lib",
"strict": true,
"allowJs": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src",
"moduleResolution": "NodeNext",
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"esModuleInterop": true,
"downlevelIteration": true,
"sourceMap": true,
"typeRoots": ["./node_modules/@types", "./src/types"],
"paths": {
"*": ["node_modules/*"],
"errors": ["./errors.ts"]
}
},
"include": ["./src/**/*.ts", "./src/*.ts"],
"exclude": ["node_modules", "dev", "examples", "lib", "**/*.json", "**/*.test.js"]
}