verstak/frontend/tsconfig.json

26 lines
879 B
JSON

/**
* This file tells your IDE where the root of your JavaScript project is, and sets some
* options that it can use to provide autocompletion and other features.
*/
{
"compilerOptions": {
"allowJs": true,
"moduleResolution": "bundler",
/**
* The target and module can be set to ESNext to allow writing modern JavaScript,
* and Vite will compile down to the level of "build.target" specified in the vite config file.
* Builds will error if you use a feature that cannot be compiled down to the target level.
*/
"target": "ESNext",
"module": "ESNext",
"resolveJsonModule": true,
/**
* Enable checkJs if you'd like type checking in `.svelte` and `.js` files.
*/
"checkJs": false,
"strict": true,
"skipLibCheck": true,
},
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte", "bindings"]
}