mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 09:59:58 +01:00
23 lines
483 B
JSON
23 lines
483 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es5",
|
||
|
"module":"es2015",
|
||
|
"lib": ["es2015", "es2016", "es2017", "dom"],
|
||
|
"strict": true,
|
||
|
"sourceMap": true,
|
||
|
"declaration": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"declarationDir": "dist/types",
|
||
|
"outDir": "dist/lib",
|
||
|
"typeRoots": [
|
||
|
"node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|