cudr_slate-collaborative/packages/example/tsconfig.json

34 lines
714 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
"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,
2019-10-22 20:41:04 +00:00
"skipLibCheck": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
2019-10-05 08:44:49 +00:00
}
}