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