cudr_slate-collaborative/tsconfig.json

18 lines
396 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",
2019-10-05 08:44:49 +00:00
"declaration": true,
"skipLibCheck": true,
"declarationMap": true,
"esModuleInterop": true,
"jsx": "react",
2019-10-05 08:44:49 +00:00
"sourceMap": true,
"strict": true,
2022-02-18 00:09:57 +00:00
"suppressImplicitAnyIndexErrors": true
},
2022-02-23 21:51:26 +00:00
"exclude": ["node_modules", "build"],
"include": ["**/*.ts", "**/*.tsx"]
2019-10-05 08:44:49 +00:00
}