dnote/browser/tsconfig.json
Sung Won Cho 3883a076ef
Lint TypeScript (#349)
* extract dep

* Lint

* Lint

* Fix

* Fix build
2019-11-25 12:24:23 +08:00

18 lines
393 B
JSON

{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": false,
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"jsx": "react",
"esModuleInterop": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"jslib/*": [
"../jslib/src/*"
]
}
}
}