cudr_slate-collaborative/tsconfig.json
2022-02-17 16:26:38 -05:00

23 lines
555 B
JSON

{
"compilerOptions": {
"rootDir": "./src",
"baseUrl": "./src",
"outDir": "./build",
"lib": ["dom", "dom.iterable", "esnext"],
"allowSyntheticDefaultImports": true,
"declaration": true,
"skipLibCheck": true,
"declarationMap": true,
"esModuleInterop": true,
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"target": "esnext"
},
"exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"]
}