index.community/frontend/tsconfig.json

31 lines
803 B
JSON
Raw Normal View History

2018-08-27 12:07:32 +00:00
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
2019-07-14 11:47:06 +00:00
"lib": ["esnext", "dom"],
"module": "esnext",
2018-08-27 12:07:32 +00:00
"moduleResolution": "node",
"noImplicitAny": true,
2018-08-27 12:07:32 +00:00
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"outDir": "build",
"rootDir": "src",
"sourceMap": true,
2018-08-27 12:07:32 +00:00
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
2019-07-14 11:47:06 +00:00
"typeRoots": ["./node_modules/@types", "./src/typings"],
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
2018-08-27 12:07:32 +00:00
},
2019-07-14 11:47:06 +00:00
"exclude": ["node_modules", "build"],
"include": ["src"]
2018-08-27 12:07:32 +00:00
}