forked from cornerstonejs/cornerstone3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
45 lines (43 loc) · 1.15 KB
/
tsconfig.base.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
41
42
43
44
45
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"checkJs": false,
// Ensure that .d.ts files are created by tsc, but not .js files
"declaration": true,
"emitDeclarationOnly": false,
// Ensure that Babel can safely transpile files in the TypeScript project
"isolatedModules": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
"jsx": "react-jsx",
"lib": ["ES6", "dom"], // "ES6", "DOM" | "es2015", "dom"
"module": "esnext", // esnext | commonjs
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitThis": false,
"outDir": "lib",
"pretty": true,
"removeComments": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": false,
"target": "es5", // esnext | es5
"downlevelIteration": true,
"resolveJsonModule": true
},
"exclude": [
"node_modules",
"dist",
"packages/**/dist",
"packages/**/lib",
"packages/**/lib-esm",
"packages/docs",
"packages/docs/**/*",
"snippets",
"examples"
]
}