-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
33 lines (33 loc) · 1.2 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true, // To provide backwards compatibility, Node.js allows you to import most CommonJS packages with a default import. This flag tells TypeScript that it's okay to use import on CommonJS modules. (credits @sindresorhus/tsconfig https://github.com/sindresorhus/tsconfig)
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": true,
"isolatedModules": false,
"module": "ES2020",
"moduleDetection": "force",
"moduleResolution": "Bundler",
"newLine": "lf",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"paths": { "src/*": ["./src/*"] },
"pretty": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
"target": "ES2020",
"rootDir": "./src",
"outDir": "./dist",
"verbatimModuleSyntax": true
},
"include": ["./src", "./app"]
}