mirror of
https://github.com/KevinMidboe/planetposen-backend.git
synced 2025-10-28 16:00:12 +00:00
16 lines
349 B
JSON
16 lines
349 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"outDir": "lib"
|
|
},
|
|
"include": ["src/**/*.js", "src/**/*.ts", "src/**/*.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|