mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-13 07:01:00 -05:00
* Add eslint config Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
32 lines
968 B
JSON
32 lines
968 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Svelte",
|
|
"_version": "3.0.0",
|
|
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules/*", "__sapper__/*", "public/*"],
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
/**
|
|
Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
|
to enforce using `import type` instead of `import` for Types.
|
|
*/
|
|
"importsNotUsedAsValues": "error",
|
|
"isolatedModules": true,
|
|
/**
|
|
To have warnings/errors of the Svelte compiler at the correct position,
|
|
enable source maps by default.
|
|
*/
|
|
"sourceMap": true,
|
|
/** Requests the runtime types from the svelte modules by default. Needed for TS files or else you get errors. */
|
|
"types": ["svelte"],
|
|
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
}
|
|
}
|