-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
40 lines (39 loc) · 1005 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
35
36
37
38
39
40
{
"compilerOptions": {
"sourceMap": true,
"resolveJsonModule": true,
"types": ["node", "sade"],
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"esModuleInterop": true,
// "importHelpers": true,
"isolatedModules": false,
"stripInternal": true,
"rootDir": ".",
"suppressImplicitAnyIndexErrors": true,
"baseUrl": ".",
"outDir": "dist",
"strict": false,
"suppressExcessPropertyErrors": false,
"removeComments": true,
"target": "ESNext",
"lib": ["ES2022", "ESNext", "ES2015"],
"module": "ES2022",
"noPropertyAccessFromIndexSignature": false,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": false
},
// "extends": ".",
"include": ["src/**/*"],
"exclude": [
"node_modules/**",
"templates/**",
"node_modules",
"_src/templatesist",
"storage",
"dist",
".repo",
"build.js"
]
}