cudr_slate-collaborative/tsconfig.json

23 lines
555 B
JSON
Raw Normal View History

2019-10-05 08:44:49 +00:00
{
"compilerOptions": {
2022-02-17 21:11:18 +00:00
"rootDir": "./src",
"baseUrl": "./src",
2022-02-17 21:26:38 +00:00
"outDir": "./build",
"lib": ["dom", "dom.iterable", "esnext"],
"allowSyntheticDefaultImports": true,
2019-10-05 08:44:49 +00:00
"declaration": true,
"skipLibCheck": true,
"declarationMap": true,
"esModuleInterop": true,
"jsx": "react",
"module": "esnext",
2019-10-05 08:44:49 +00:00
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"target": "esnext"
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
2019-10-05 08:44:49 +00:00
}