0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-28 16:12:17 +01:00
svelte/tsconfig.json

18 lines
353 B
JSON
Raw Normal View History

2017-05-07 01:43:33 +02:00
{
2017-05-07 03:54:28 +02:00
"compilerOptions": {
"types" : ["node"],
"noImplicitAny": true,
"diagnostics": true,
"noImplicitThis": true,
2017-05-07 04:52:37 +02:00
"noEmitOnError": true,
"allowJs": true,
"lib": ["es5", "es6", "dom"]
2017-05-07 03:54:28 +02:00
},
2017-05-07 04:31:31 +02:00
"target": "ES5",
"include": [
"src"
2017-05-07 04:31:31 +02:00
],
"exclude": [
"node_modules"
]
2017-05-07 01:43:33 +02:00
}