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": {
"target": "ES2017",
"downlevelIteration": true,
"removeComments": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"moduleDetection": "auto",
"useDefineForClassFields": false, // allowing this to be true breaks overriding of observable props in subclasses (see CollectionSubView)
"strict": true,
"jsx": "react",
"allowJs": true,
"sourceMap": true,
"outDir": "dist",
"lib": ["DOM", "es2017"],
"typeRoots": ["./src/typings", "node_modules/@types", "./src/extensions/General"],
"resolveJsonModule": true,
"moduleResolution": "node"
}
// "exclude": [
// "node_modules",
// "static"
// ],
}
|