forked from uuberoy/scalabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
24 lines (24 loc) · 847 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
{
"compilerOptions": {
"outDir": "./dist/", // path to output directory
"sourceMap": true, // allow sourcemap support
"strict": true,
"module": "es6", // specify module code generation
"jsx": "react", // use typescript to transpile jsx to js
"target": "es6", // specify ECMAScript target version
"allowJs": false, // allow a partial TypeScript and JavaScript codebase
"noImplicitAny": true,
"noUnusedLocals": true,
"moduleResolution": "node",
"strictNullChecks": true, // enable strict null checks as a best practice
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"app/src/js/entries/*.tsx",
"app/src/js/entries/*.ts"
],
"exclude": [
"node_modules"
]
}