-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 858 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 858 Bytes
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
{
"compilerOptions": {
"rootDir": "src",
"types": ["node"],
"lib": ["es2021", "dom", "webworker"],
"outDir": "lib",
"allowJs": false,
"sourceRoot": "src",
"sourceMap": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "ES2020",
"allowImportingTsExtensions": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"declaration": true,
"typeRoots": ["node_modules/@types"],
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"alwaysStrict": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"typeAcquisition": {
"enable": false
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "lib", "build"]
}