1
mirror of https://github.com/xitanggg/open-resume synced 2024-11-03 09:19:21 +01:00
open-resume/tsconfig.json
2023-06-23 23:13:48 -07:00

32 lines
806 B
JSON

{
"compilerOptions": {
"target": "es5",
"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",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": "./src/app",
// Path Mapping Doc: https://www.typescriptlang.org/docs/handbook/module-resolution.html#path-mapping
"paths": {
"public/*": ["../../public/*"],
"*": ["*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}