mirror of
https://github.com/cudr/slate-collaborative.git
synced 2024-10-27 20:34:06 +00:00
29 lines
697 B
JSON
29 lines
697 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": "./src",
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"downlevelIteration": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"isolatedModules": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"declaration": false,
|
||
|
"declarationMap": false,
|
||
|
"noEmit": true,
|
||
|
"target": "es5",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"dom.iterable",
|
||
|
"esnext"
|
||
|
],
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"jsx": "react"
|
||
|
},
|
||
|
"exclude": ["node_modules"],
|
||
|
"include": ["**/*.ts", "**/*.tsx"]
|
||
|
}
|
||
|
|