-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
41 lines (41 loc) · 1013 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
// I dont actually use this file, its just here for vscode completion and tests
{
"compilerOptions": {
"noEmit": true,
"target": "ES2020",
"moduleResolution": "node",
"module": "es2020",
"declaration": false,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"outDir": "build/",
"rootDir": ".",
"baseUrl": "behavior_packs/",
"listFiles": false,
"lib": [
"es2020",
"dom"
],
"resolveJsonModule": true
},
"include": [
"scripts/*"
],
"exclude": [
"node_modules/**/*",
"scripts/showdown/.*-dist/**/*",
"scripts/showdown/server/chat-plugins/private/*/*.d.ts",
"scripts/showdown/test/**/*"
],
"compileOnSave": false
}