mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-19 11:06:41 +03:00
Add tsconfig.json
This commit is contained in:
@@ -14,7 +14,8 @@
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/",
|
||||
"assets/": "assets/",
|
||||
"public/": "%PUBLIC_DIR%/"
|
||||
"public/": "%PUBLIC_DIR%/",
|
||||
"tsconfig.json": "tsconfig.json"
|
||||
},
|
||||
"gitignore": [
|
||||
"public/build/enhavo/*",
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
* Update your <fg=green>package.json</> file
|
||||
* Update your <fg=green>webpack.config.js</> file
|
||||
* Update your configurations
|
||||
* Add a <fg=green>tsconfig.json</> file
|
||||
* Build your assets with
|
||||
|
||||
<fg=green>$ yarn encore dev</>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"lib": [ "es2015", "dom" ],
|
||||
"module": "amd",
|
||||
"target": "es5",
|
||||
"allowJs": true,
|
||||
"noImplicitAny": true,
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"experimentalDecorators": true
|
||||
},
|
||||
"include": [
|
||||
"./assets/**/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user