mirror of
https://github.com/siv-org/siv.git
synced 2026-01-06 17:13:51 -05:00
34 lines
807 B
JSON
34 lines
807 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"api/*": ["./pages/api/*"],
|
|
"public/*": ["./public/*"],
|
|
"src/*": ["./src/*"]
|
|
},
|
|
"target": "es2016",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"downlevelIteration": true,
|
|
"incremental": true
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"exclude": ["node_modules", ".next", "out", "cypress", "db-data"],
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
|
}
|