1
Fork 0
tildes-reextended/tsconfig.json

21 lines
345 B
JSON
Raw Permalink Normal View History

2019-11-10 17:38:47 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
"module": "commonjs",
"outDir": "build/",
"strict": true,
"target": "es6",
"typeRoots": [
"node_modules/@types",
"node_modules/web-ext-types"
],
},
"include": [
"source/ts/**/*.ts",
"scripts/*.ts"
],
"exclude": [
"node_modules/"
]
}