mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 14:13:08 +00:00
cfddbf65e4
Add webpack config and dependencies to have typescript built, and also convert src/lib/validation.coffee to typescript. In this conversion I also added a lot of debugging which should help the upcoming local mode development. Change-type: minor Signed-off-by: Cameron Diver <cameron@resin.io>
18 lines
318 B
JSON
18 lines
318 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./build"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"typings/**/*.d.ts"
|
|
]
|
|
}
|