mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-08-06 14:21:25 +08:00
20 lines
356 B
JSON
20 lines
356 B
JSON
{
|
|
"exclude": ["node_modules"],
|
|
"extends": "@tih/tsconfig/nextjs.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"~/*": ["*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"include": ["src", "next-env.d.ts"]
|
|
}
|