generated from 47ng/typescript-library-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
tsconfig.json
43 lines (37 loc) · 833 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
// Type checking
"strict": true,
// Modules
"module": "CommonJS",
"moduleResolution": "node",
"resolveJsonModule": true,
"baseUrl": "./src",
"rootDir": "./src",
// Language & Environment
"target": "es2018",
"lib": ["dom"],
// Emit
"outDir": "./dist",
"declaration": true,
"downlevelIteration": true,
// Interop
"allowJs": true,
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Experimental Options
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Misc
"skipLibCheck": true
},
"include": ["**/*.ts"],
"exclude": [
"node_modules",
"./dist",
"./prisma",
"./src/tests/migrate.ts",
"./src/tests/migrations/*.ts"
]
}