14 lines
368 B
JSON
14 lines
368 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"allowImportingTsExtensions": false
|
|
},
|
|
"include": ["src/api.ts", "src/middleware/location.ts"]
|
|
}
|