cudr_slate-collaborative/packages/example/tsconfig.json

29 lines
585 B
JSON
Raw Normal View History

2019-10-05 08:44:49 +00:00
{
2019-10-19 20:29:09 +00:00
"include": [
"src/**/*"
],
2019-10-05 08:44:49 +00:00
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
2019-10-19 20:29:09 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2019-10-05 08:44:49 +00:00
"baseUrl": "src",
"jsx": "react",
"allowJs": true,
"declaration": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"isolatedModules": true,
"skipLibCheck": true
}
}