svelte.sk-auth/tsconfig.json

22 lines
562 B
JSON
Raw Normal View History

2021-05-17 19:01:40 +02:00
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": false,
2021-05-17 19:01:40 +02:00
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
2021-05-17 19:01:40 +02:00
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": "./",
"outDir": "./dist"
2021-05-17 19:01:40 +02:00
},
"include": ["src/**/*"],
"exclude": ["**/node_modules", "**/dist", "./app", "**/*.md", "**/rollup.config.js"]
2021-05-17 19:01:40 +02:00
}