ente/tsconfig.json

29 lines
933 B
JSON
Raw Normal View History

2020-09-09 21:09:51 +00:00
{
2021-01-20 06:30:05 +00:00
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
2021-01-20 06:30:05 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
2022-12-04 19:18:32 +00:00
"strictBindCallApply": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"noImplicitAny": false,
"useUnknownInCatchVariables": false,
2021-01-20 06:30:05 +00:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": "./src",
"downlevelIteration": true,
"jsxImportSource": "@emotion/react",
"incremental": true
2021-01-20 06:30:05 +00:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": ["node_modules", "out", ".next", "thirdparty"]
}