mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
9dc8c84d2c
dacbe6a667671b6c476b8fb1ba972c26cd9061cb
24 lines
747 B
JSON
24 lines
747 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
/**
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
* Note that setting allowJs false does not prevent the use
|
|
* of JS in `.svelte` files.
|
|
*/
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"strict": true
|
|
},
|
|
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte", "rollup-typings.config.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|