-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
27 lines (27 loc) · 1000 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
{
"compilerOptions": {
"outDir": "./bundles/",
"sourceMap": true,
"noImplicitAny": true, // best practice
"strictNullChecks": true, // best practice
"moduleResolution": "node", // load from node-modules
"jsx": "react", // compile jsx into render functions
"target": "esnext", // don't transpile; we let babel handle this
"allowJs": true, // allow mixed ts-js project
"esModuleInterop": true, // allows importing cjs modules with e.g. `import $ from 'jquery'`
"lib": [
"esnext", // full support for latest js features
"dom", // assume DOM APIs are present
"dom.iterable", // assume newer DOM APIs are present
],
"useDefineForClassFields": false,
/* Linting */
"strict": false,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true
},
"include": [
"srcmedia/"
]
}