20 lines
471 B
JSON
20 lines
471 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"baseUrl": ".",
|
|
"incremental": false,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"noEmit": false,
|
|
"outDir": ".test-build",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"target": "ES2022",
|
|
"tsBuildInfoFile": ".test-build/tsconfig.test.tsbuildinfo"
|
|
},
|
|
"include": ["lib/**/*.ts", "types/**/*.ts"],
|
|
"exclude": ["node_modules", ".next", ".test-build"]
|
|
}
|