2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-09-22 07:32:37 -06:00
easy-markdown-editor/tsconfig.json

39 lines
902 B
JSON
Raw Permalink Normal View History

2018-07-06 16:03:52 +02:00
{
"compilerOptions": {
"baseUrl": "",
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
2019-02-21 18:03:50 +01:00
"removeComments": true,
"resolveJsonModule": true,
2018-07-06 16:03:52 +02:00
"lib": [
2019-02-21 18:03:50 +01:00
"esnext",
"es2018",
"es2017",
"es2016",
"es2015",
2018-07-06 16:03:52 +02:00
"dom"
],
2019-02-21 18:03:50 +01:00
"module": "commonjs",
2018-07-06 16:03:52 +02:00
"moduleResolution": "node",
"outDir": "./dist",
2019-02-21 18:03:50 +01:00
"sourceMap": true,
2018-07-06 16:03:52 +02:00
"target": "es5",
"typeRoots": [
"./node_modules/@types"
]
},
"exclude": [
2019-02-21 18:03:50 +01:00
"./node_modules",
"./src/**/*.spec.ts"
2018-07-06 16:03:52 +02:00
],
"include": [
2019-02-21 18:03:50 +01:00
"./src/**/*.ts"
2018-07-06 16:03:52 +02:00
]
}