-
Notifications
You must be signed in to change notification settings - Fork 18
/
tsconfig.json
35 lines (33 loc) · 970 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
{
"allowJs": true,
"compilerOptions": {
// Ensure that .d.ts files are created by tsc, but not .js files
// See: https://www.typescriptlang.org/docs/handbook/babel-with-typescript.html#babel-for-transpiling-tsc-for-types
"declaration": true,
"emitDeclarationOnly": true,
// Disallow features that require cross-file information for emit.
"isolatedModules": true,
// Process & infer types from .js files.
"allowJs": true,
"checkJs": true,
"module": "commonjs",
"removeComments": true,
"resolveJsonModule": true,
"sourceMap": true,
"pretty": true,
"noImplicitAny": false,
"moduleResolution": "node",
"baseUrl": "resources",
"paths": {
"@root/*": ["./*"]
},
"esModuleInterop": true,
"strict": true,
"allowUnreachableCode": true,
"skipLibCheck": true,
"downlevelIteration": true,
"outDir": "./dist"
},
"include": ["src"],
"exclude": ["node_modules"]
}