18 lines
396 B
JSON
18 lines
396 B
JSON
|
{
|
||
|
"include": ["react/features/**/*.ts"],
|
||
|
"compilerOptions": {
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"module": "es6",
|
||
|
"target": "es6",
|
||
|
"jsx": "react",
|
||
|
"lib": [ "ES2020", "DOM" ],
|
||
|
"noEmit": false,
|
||
|
"moduleResolution": "Node",
|
||
|
"strict": true,
|
||
|
"noImplicitAny": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|