router/tsconfig.json
2025-05-14 21:04:25 +08:00

38 lines
732 B
JSON

{
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"noImplicitAny": false,
"outDir": "./dist",
"sourceMap": false,
"allowJs": true,
"newLine": "LF",
"baseUrl": "./",
"typeRoots": [
"node_modules/@types",
],
"declaration": false,
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleResolution": "NodeNext",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"paths": {
"@/*": [
"src/*"
],
"@kevisual/router": [
"src/index.ts"
]
}
},
"include": [
"src/**/*.ts",
"mod.ts"
],
"exclude": [
"node_modules",
"rollup.config.js",
]
}