-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 810 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 810 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
{
"include": ["src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["src/*.mjs", "dist/**/*"],
"outDir": "dist/",
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"moduleResolution": "nodenext",
"lib": ["ESNext", "DOM"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"noEmit": true,
"allowJs": true,
"allowArbitraryExtensions": true,
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noImplicitAny": false,
"declaration": false,
"noImplicitThis": false,
"sourceMap": true,
"rootDir": "./",
"strict": true,
"types": ["node", "vscode"]
}
}