thunderhub/tsconfig.json

34 lines
1,014 B
JSON
Raw Normal View History

2019-11-10 17:34:02 +01:00
{
2020-01-26 09:57:59 +01:00
"compilerOptions": {
"outDir": "build/dist",
"module": "esnext",
"target": "es2018",
"lib": ["dom", "dom.iterable", "esnext"],
"sourceMap": true,
"rootDirs": ["src"],
"baseUrl": "src",
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
2020-01-28 07:14:19 +01:00
// "noUnusedLocals": true,
2020-01-26 09:57:59 +01:00
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["src"],
"exclude": ["node_modules", "build", "scripts"]
2019-11-10 17:34:02 +01:00
}