snort/packages/system-svelte/tsconfig.json

18 lines
381 B
JSON
Raw Normal View History

2023-09-17 14:02:07 +00:00
{
"compilerOptions": {
"baseUrl": "src",
2023-10-06 12:16:28 +00:00
"target": "ESNext",
2024-01-30 22:04:19 +00:00
"moduleResolution": "Bundler",
2023-09-17 14:02:07 +00:00
"esModuleInterop": true,
"noImplicitOverride": true,
2024-01-30 22:04:19 +00:00
"module": "ESNext",
2023-09-17 14:02:07 +00:00
"strict": true,
"declaration": true,
"inlineSourceMap": true,
"outDir": "dist",
"skipLibCheck": true
},
2024-01-30 22:04:19 +00:00
"include": ["./src/**/*.ts"],
"exclude": ["**/*.test.ts"]
2023-09-17 14:02:07 +00:00
}