SimulationVue/tsconfig.json
2021-08-10 17:32:42 +02:00

12 lines
239 B
JSON

// tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node"
}
}