-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
58 lines (55 loc) · 1.31 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
/* Visit https://aka.ms/tsconfig.json to read more about this file */
// "extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"allowUnreachableCode": false,
"baseUrl": "",
"composite": true,
"declaration": true,
"declarationMap": true,
"emitBOM": false,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"lib": [
"ESNext",
"dom",
],
"listFiles": false,
"noUnusedLocals": true,
//"noUnusedParameters": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"module": "ESNext",
"moduleDetection": "auto",
"moduleResolution": "bundler",
"newLine": "lf",
"outDir": "dist/",
"rootDir": "./src",
"skipLibCheck": false,
"sourceMap": true,
"sourceRoot": "./src",
"strict": true,
"stripInternal": true,
"target": "ESNext",
"useDefineForClassFields": true,
},
"exclude": [
"dist",
"node_modules",
"src/create-dist-package.json.js",
"src/spec",
],
"include": [
"src/*.ts",
"src/calendar/**/*.ts",
],
"types": [
"vitest/globals"
]
}