-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 870 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 870 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
28
29
30
31
{
"compilerOptions": {
"module": "CommonJS",
"declaration": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2022",
"sourceMap": true,
"outDir": "./dist/src",
"rootDir": "src",
"baseUrl": "./",
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"composite": true,
"allowJs": true,
"strict": true,
"strictPropertyInitialization": false
},
"include": ["next-env.d.ts", "src/**/*.ts", "./src/compute/argo-workflows-templates/*.yaml"],
"exclude": [
"node_modules",
"./node_modules",
"./node_modules/*",
"./node_modules/@types/node/index.d.ts"
]
}