Skip to content

Commit

Permalink
chore(examples): fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Oct 3, 2022
1 parent b2547ce commit 1717f02
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions examples/svelte3/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "dist",
"rootDir": "src",
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"removeComments": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": [
"node"
],
"lib": [
"ESNext",
"DOM"
],
"sourceMap": false,
"preserveWatchOutput": true,
"declaration": false,
// Strict
"noImplicitAny": false,
"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
// Volar
"jsx": "preserve",
},
"include": [
"src"
],
"exclude": [
"node_modules",
"generated/**/*",
"dist/**/*",
"src/**/*.spec.ts"
]
}

0 comments on commit 1717f02

Please sign in to comment.