mirror of
https://github.com/hariroshan/elm-native-library.git
synced 2024-11-24 09:04:47 +03:00
22 lines
485 B
JSON
22 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noEmitHelpers": true,
|
|
"noEmitOnError": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["es2017", "dom"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["app/*"],
|
|
"@/*": ["app/*"]
|
|
}
|
|
},
|
|
"include": ["app/**/*"],
|
|
"files": ["./references.d.ts"],
|
|
"exclude": ["node_modules", "platforms"]
|
|
}
|