t2-model-skinner/tsconfig.json

37 lines
786 B
JSON
Raw Permalink Normal View History

2022-12-03 06:26:17 +00:00
{
"compilerOptions": {
"types": ["node", "react"],
2022-12-03 06:26:17 +00:00
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
2022-12-03 06:26:17 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"paths": {
"@config/models.json": ["./models.json"]
},
"plugins": [
{
"name": "next"
}
]
2022-12-03 06:26:17 +00:00
},
"include": [
"./types/*.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"docs/types/**/*.ts",
"next-env.d.ts",
".next/types/**/*.ts"
],
2022-12-03 06:26:17 +00:00
"exclude": ["node_modules", "vendor"]
}