forked from BoostIO/BoostNote-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 756 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 756 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
{
"include": ["src/**/*.ts", "src/**/*.tsx", "typings/**/*.d.ts"],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es2019",
"downlevelIteration": true,
"importHelpers": true,
"sourceMap": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"allowJs": true,
"checkJs": false,
"lib": ["dom", "esnext"],
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true,
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true
}
}