mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
32 lines
608 B
JSON
32 lines
608 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2015",
|
|
"module": "es6",
|
|
"declaration": true,
|
|
"declarationDir": "types",
|
|
"noImplicitThis": true,
|
|
"noEmitOnError": true,
|
|
"lib": [
|
|
"es5",
|
|
"es6",
|
|
"dom",
|
|
"es2015"
|
|
],
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"svelte/internal": ["./src/runtime/internal/index"],
|
|
"svelte/easing": ["./src/runtime/easing/index"],
|
|
"svelte/motion": ["./src/runtime/motion/index"],
|
|
"svelte/store": ["./src/runtime/store/index"]
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|