-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
32 lines (32 loc) · 864 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
28
29
30
31
32
{
"compilerOptions": {
"declaration": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"lib": ["es2019", "dom", "dom.iterable"],
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noUnusedLocals": true,
"outDir": "lib",
"resolveJsonModule": true,
"rootDirs": ["./", "js"],
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"experimentalDecorators": true,
// This allows us to initialize members in the "initialize" method
"strictPropertyInitialization": false,
"target": "es2015",
"jsx": "react",
"baseUrl": "."
},
"typeRoots": [
"./js/typings",
"./node_modules/@types/"
],
"include": ["js/*.ts", "js/*.tsx", "js/core/*.ts", "js/core/*.tsx", ],
"ts-node": {
"transpileOnly": true
}
}