17 lines
455 B
JSON
17 lines
455 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@heroui/standard/tsconfig/next.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"paths": {
|
|
"@/.source": ["./.source/server.ts"],
|
|
"@/.source/*": ["./.source/*"],
|
|
"@/*": ["./src/*"],
|
|
"~env": ["./env.ts"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "env.ts", "next-env.d.ts", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|