jackmerrill.com/tsconfig.json

33 lines
643 B
JSON
Raw Normal View History

2021-03-30 22:27:36 -07:00
{
"compilerOptions": {
"allowJs": true,
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
2022-05-08 19:45:14 -07:00
"lib": [
"dom",
"es2017"
],
2021-03-30 22:27:36 -07:00
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
2022-05-08 19:45:14 -07:00
"target": "esnext",
"incremental": true
2021-03-30 22:27:36 -07:00
},
2022-05-08 19:45:14 -07:00
"exclude": [
"node_modules"
],
"include": [
"**/*.ts",
"**/*.tsx"
]
2021-03-30 22:27:36 -07:00
}