mirror of https://github.com/sveltejs/svelte
parent
c29c389a72
commit
d5d5caba60
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/animate';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/compiler';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/easing';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/index';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/internal';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/motion';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/store';
|
@ -0,0 +1 @@
|
|||||||
|
export * from './dist/transition';
|
@ -1,23 +1,34 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ES6",
|
"target": "es2015",
|
||||||
"diagnostics": true,
|
"module": "es6",
|
||||||
|
"declarationDir": "./dist",
|
||||||
|
"outDir": "./dist",
|
||||||
|
"declaration": true,
|
||||||
"noImplicitThis": true,
|
"noImplicitThis": true,
|
||||||
"noEmitOnError": true,
|
"noEmitOnError": true,
|
||||||
"allowJs": true,
|
"lib": [
|
||||||
"lib": ["es5", "es6", "dom"],
|
"es5",
|
||||||
|
"es6",
|
||||||
|
"dom",
|
||||||
|
"es2015"
|
||||||
|
],
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"svelte/*": ["./src/*"]
|
"svelte/*": [
|
||||||
}
|
"./src/*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"typeRoots": [
|
||||||
|
"node_modules/@types"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"./*.*js",
|
"dist"
|
||||||
"node_modules"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue