generated from nju33/gitpod-workspace
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 785 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
{
"include": [".*.js", "*.js", "packages/**/*.ts", "packages/**/*.tsx"],
"exclude": [],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"jsx": "react",
"rootDir": ".",
"isolatedModules": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"@nju33/create-__components": ["./packages/components/src/index.ts"],
"@nju33/create-__helpers": ["./packages/helpers/src/index.ts"]
},
"esModuleInterop": true,
// "experimentalDecorators": true,
// "emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}