|
@@ -12,6 +12,7 @@
|
|
"**/*.tsx"
|
|
"**/*.tsx"
|
|
],
|
|
],
|
|
"compilerOptions": {
|
|
"compilerOptions": {
|
|
|
|
+ "ignoreDeprecations": "5.0",
|
|
"target": "esnext",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"module": "esnext",
|
|
"strict": false,
|
|
"strict": false,
|
|
@@ -19,14 +20,23 @@
|
|
"moduleResolution": "node",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"paths": {
|
|
- "@/*": ["./src/*"],
|
|
|
|
- "@common/*": ["../common/*"]
|
|
|
|
|
|
+ "@/*": [
|
|
|
|
+ "./src/*"
|
|
|
|
+ ],
|
|
|
|
+ "@common/*": [
|
|
|
|
+ "../common/*"
|
|
|
|
+ ]
|
|
},
|
|
},
|
|
"isolatedModules": false,
|
|
"isolatedModules": false,
|
|
"sourceMap": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"esModuleInterop": true,
|
|
- "lib": ["es5", "es6", "dom", "dom.iterable"],
|
|
|
|
|
|
+ "lib": [
|
|
|
|
+ "es5",
|
|
|
|
+ "es6",
|
|
|
|
+ "dom",
|
|
|
|
+ "dom.iterable"
|
|
|
|
+ ],
|
|
"allowSyntheticDefaultImports": true
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
},
|
|
"references": [
|
|
"references": [
|