-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 665 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"erasableSyntaxOnly": true,
"target": "esnext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["esnext"],
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"noEmit": true
},
"include": ["scripts/**/*.ts", "pipeline/**/*.ts", "create_own_module_list.ts"],
"exclude": ["node_modules", "dist", "modules", "modules_temp", "fixtures"]
}